home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Developer CD 2.1
/
Amiga Developer CD v2.1.iso
/
NDK
/
NDK_1.3
/
Include-Strip1.3
/
include.h
/
graphics
/
regions.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-07-15
|
291 b
|
17 lines
#ifndef GRAPHICS_REGIONS_H
#define GRAPHICS_REGIONS_H
#ifndef GRAPHICS_GFX_H
#include <graphics/gfx.h>
#endif
struct RegionRectangle
{
struct RegionRectangle *Next,*Prev;
struct Rectangle bounds;
};
struct Region
{
struct Rectangle bounds;
struct RegionRectangle *RegionRectangle;
};
#endif